/* kenwood css transition frames with image and card */
@import url("https://fonts.cdnfonts.com/css/nexa-bold");

.reflection-heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20px;
}

.original-h1 {
  font-size: 48px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.shadow-h1 {
  font-size: 48px;
  margin: 0;
  transform: scaleY(-1) skewX(-15deg) translateX(-20px);
  opacity: 0.3;
  color: #000;
  filter: blur(1px);
  margin-top: -10px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0));
}


/* Hero page */

.bg-layer-kenwood {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.bg-layer-kenwood video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-overlay-kenwood {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.herokenwood {
  position: relative;
  height: 100vh;
}

.hero-content-kenwood {
  position: absolute;
  /* instead of relative */
  top: 90%;
  /* move to middle vertically */
  left: 50%;
  /* move to middle horizontally */
  transform: translate(-50%, -50%);
  /* perfect centering */
  z-index: 1;
  color: white;
  text-align: center;
}

.hero-content-kenwood h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content-kenwood p {
  font-size: 1.5rem;
}


.hero-content-kenwood h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content-kenwood p {
  font-size: 1.5rem;
}


.description-card h2 {
  text-align: center;
}

.description-card h4 {
  text-align: center;
  text-transform: uppercase;
}

.description-card p {
  /* text-align: center; */
  margin-top: 10px;
  color: #433d0fc7;
}

.description-card:hover {
  box-shadow: 0px 14px 56px -11px #1875ff;
}

.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -200px;
}

.center {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 10px;
  left: 10px;
}

.dot-1 {
  position: absolute;
  z-index: 3;
  width: 160px;
  height: 160px;
  top: 95px;
  left: 95px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: jump-jump-1 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
  animation: jump-jump-1 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-2 {
  position: absolute;
  z-index: 2;
  width: 190px;
  height: 190px;
  top: 80px;
  left: 80px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: jump-jump-2 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
  animation: jump-jump-2 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-3 {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  top: 65px;
  left: 65px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
  animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-4 {
  position: absolute;
  z-index: 0;
  width: 250px;
  height: 250px;
  top: 50px;
  left: 50px;
  background: #fff;
  border-radius: 50%;
  animation-fill-mode: both;
  animation: jump-jump-4 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-5 {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  top: 35px;
  left: 35px;
  background: #fff;
  border-radius: 50%;
  animation-fill-mode: both;
  animation: jump-jump-5 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.grid-container-circles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 70vh;
  padding: 20px;
}

.center {
  position: relative;
  width: 320px;
  height: 320px;
}

.circle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 4;
  border-radius: 50%;
  animation: pulse-image 2s ease-in-out infinite;
}

@keyframes jump-jump-1 {

  0%,
  70% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jump-jump-2 {

  0%,
  40% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jump-jump-3 {

  0%,
  10% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jump-jump-4 {

  0%,
  5% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0);
  }

  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
}

@keyframes jump-jump-5 {

  0%,
  0% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0);
  }

  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
}